home *** CD-ROM | disk | FTP | other *** search
/ PC Format (UK) 188 / 01-04 PC Format 188 [2006-06] DVD side 1_.iso / Menus / Scenes / HOME.dir / 00038_Script_Subs_Button < prev    next >
Text File  |  2006-04-20  |  305b  |  22 lines

  1. property Sp
  2.  
  3. on beginsprite me
  4.   Sp = sprite(me.spritenum)
  5. end
  6.  
  7. on mouseEnter me
  8.   cursor 280
  9.   Sp.ink = 33
  10. end
  11.  
  12. on mouseLeave me
  13.   cursor -1
  14.   Sp.ink = 0
  15. end
  16.  
  17. on mouseUp me
  18.   cursor -1
  19.   Sp.ink = 0
  20.   gotonetpage("http://www.pcformat.co.uk/magazine/default.asp?subsectionid=907")
  21. end
  22.